home *** CD-ROM | disk | FTP | other *** search
/ EuroCD 3 / EuroCD 3.iso / Programming / vbcc / machines / amiga68k / libsrc / stdio / remove.c < prev    next >
Encoding:
C/C++ Source or Header  |  1998-06-24  |  115 b   |  9 lines

  1. #include <stdio.h>
  2.  
  3. #include <proto/dos.h>
  4.  
  5. int remove(const char *name)
  6. {
  7.     return(DeleteFile((STRPTR)name));
  8. }
  9.